home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / utils / joki21.arj / JOKI.TXT < prev    next >
Text File  |  1993-11-05  |  4KB  |  101 lines

  1. * JOKI.TXT 11-05-93 *
  2.  
  3. Joki(TM) 2.1 is a Free Soft Toy from BIGGUN International
  4.  
  5. BIGGUN, Joki and UPJOY are trademarks of BIGGUN International
  6. Windows is a trademark of Microsoft(R) Corporation
  7.  
  8. EVERYBODY MAY COPY AND DISTRIBUTE JOKI.COM VERSION 2.1 ONLY IF THIS
  9. JOKI.TXT AND UPJOY.TXT IS INCLUDED. IF YOU MANUFACTURE JOYSTICKS, FOR
  10. EXAMPLE, YOU MAY SHIP JOKI WITH YOUR JOYSTICKS. ONLINE NETWORKS, DISK
  11. VENDORS AND MAGAZINES MAY ALSO DISTRIBUTE JOKI. JOKI 2.1 IS PUBLIC
  12. DOMAIN.
  13.  
  14. Q: What is Joki?
  15. A: Joki does joystick-keyboard emulation on the BIOS level, enabling you to
  16. play some 'keyboard only' games (usually those written in BASIC), with
  17. your joystick. Joki works for the 1986 version of SOPWITH and improves
  18. joystick performance in PARATROOPER. Actually, there are lots of older
  19. games out there that are Joki compatible.
  20.  
  21. Q: Where is Joki's new feature?
  22. A: Internally, Joki 2.1 is faster than version 2.0
  23.  
  24. Operating instructions
  25. ======================
  26. To play the 1986 version of SOPWITH with your joystick, type the
  27. following command:
  28. JOKI >SOP.BAT
  29. Joki prompts you for the keys for stick left, right, forward, backward
  30. and Button 1 and 2. Note that versions of SOPWITH from BMB Compuscience
  31. after 1986 aren't Joki compatible.
  32.  
  33. The next list of keys works nicely:
  34. Stick left:     ',' (comma)     = nose up
  35. Stick right:    '/' (slash)     = nose down
  36. Stick forward:  'x'             = increase rpm
  37. Stick backward: '\' (backslash) = decrease rpm
  38. Button 1:       ' ' (space)     = fire
  39. Button 2:       'b'             = bomb
  40.  
  41. Joki saves the keys to the SOP.BAT hI-score program (using DOS
  42. redirection). Next time you want to play SOPWITH, just type SOP to
  43. program your joystick.
  44.  
  45. For QBASIC NIBBLES.BAS shipped with some versions of DOS, you'll program
  46. your joystick with the arrow keys, and press Space and 'y' for the
  47. buttons.
  48.  
  49. Keep in mind that some games, like SOPWITH, respond only to lowercase or
  50. uppercase letters, so you must set Caps Lock and Num Lock accordingly
  51. before creating a hI-score program.
  52.  
  53. If a game has less than six controls, you can press any irrelevant keys
  54. for the unused joystick states. You can edit a hI-score program and
  55. change values to zero to disable those functions. Example:
  56. JOKI 0 0 0 0 0 0
  57. disables all functions.
  58.  
  59. To remove Joki from memory, you have to reset your computer.
  60. Alternatively, you can run Joki from a DOS session under Windows.
  61.  
  62. If you toggle your computer's turbo after Joki is loaded, you'll have to
  63. re-center your joystick by pressing Ctrl-Button 1, i.e., hold down the
  64. Control key on the keyboard, then press Button 1 which is usually the
  65. joystick's trigger. Your game will pause until you release the Ctrl
  66. key.
  67.  
  68. Here are some other settings that can be adjusted on-the-fly:
  69. Switch off/on       Ctrl-Button 2
  70. Repeat rate         Left Shift-Button 1 (FFFast, Slow, Standard)
  71. Analog sensitivity  Left Shift-Button 2 (changes the dead zone)
  72.  
  73. Joki defaults to Standard repeat rate and High Analog sensitivity.
  74.  
  75. Note: In general, the default settings work fine. The FFFast repeat rate
  76. can overwhelm some games, like SOPWITH, causing it to freeze.
  77.  
  78. When you run a hI-score program, Joki displays its current settings.
  79.  
  80. Programmer's Guide
  81. ==================
  82. Joki works for games that poll the keyboard for input, for example:
  83. ...
  84. 150 A$ = INKEY$ :REM A$ = INKEY$
  85. 160 IF A$ <> "" THEN GOSUB 2000 :REM GOSUB 2000 IF A$ <> ""
  86. ...
  87. If a game continues to read keys while there are keys waiting, the game
  88. will freeze 'til the cows come home if Joki's FFFast repeat rate is
  89. selected.
  90.  
  91. Congratulations, you're now an official Joki gamer.
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.